home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / micropaint / install-micropaint < prev    next >
Text File  |  1998-08-09  |  1KB  |  62 lines

  1. ; $VER: InstallMicroPaint 2.00
  2. ; FR-SoftWorks MicroPaint Installer Script
  3. ; Copyright © FR-SoftWorks 1998
  4.  
  5. (working "Installing MicroPaint")
  6.  
  7. (set DestDir
  8.    (askdir
  9.       (prompt "Where do you want to install MicroPaint?")
  10.       (help "A drawer for the application will be created automatically.")
  11.       (default "SYS:")
  12.    )
  13. )
  14.  
  15. (set DestDir (expandpath DestDir))
  16. (set @default-dest (tackon DestDir "MicroPaint"))
  17.  
  18. (makedir @default-dest (infos))
  19.  
  20. (copyfiles
  21.    (source "dist")
  22.    (dest @default-dest)
  23.    (all)
  24.    (infos)
  25. )
  26.  
  27. (copyfiles
  28.     (prompt "Copying CBSI")
  29.     (help "CBSI is an abbreviation for 'Crossbones System Information'.\n\nThis utility examines:\n\n· CPU and FPU\n· operating system\n· display\n· CPU speed\n· hard disk transfer speed")
  30.     (source "UK")
  31.     (dest "C:")
  32.     (all)
  33.     (infos)
  34.     (optional "nofail" "force")
  35.     (confirm)
  36. )
  37.  
  38. (copylib
  39.     (prompt "Copying cxb.library")
  40.     (help "This library is required.")
  41.     (source "cxb.library")
  42.     (dest "LIBS:")
  43.     (optional "nofail")
  44.     (confirm)
  45.     )
  46.  
  47. (copyfiles
  48.     (prompt "Copying Catalog Files")
  49.     (help "You should install the catalog files only if you want MicroPaint to use another language than English.")
  50.     (source "Catalogs")
  51.     (dest "LOCALE:Catalogs")
  52.     (all)
  53.     (infos)
  54.     (optional "nofail" "force")
  55.     (confirm)
  56. )
  57.  
  58. (message "\nInstallation complete.\n")
  59.  
  60. (exit (quiet))
  61.  
  62.